* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling the header */
header {
    background-color:  #854b9a;
    color:white;
    padding: 20px;
    text-align: center;
}

/* Styling the main content */
main {
    padding: 20px;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    color:  black;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Styling the team members */
.team-member {
    text-align: center;
    margin-top: 20px;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-member p {
    color:  #854b9a;
    font-size: 14px;
}
footer {
    background-color: #854b9a;
    color: #fff;
    text-align: center;
    padding: 10px;
}